home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / System / Sample 2.4 Think C distribution / wstm.h < prev   
Text File  |  1990-07-09  |  710b  |  27 lines

  1. /*______________________________________________________________________
  2.  
  3.     wstm.h - Window State Module Interface.
  4.     
  5.     Copyright © 1988, 1989, 1990, Northwestern University.
  6. _____________________________________________________________________*/
  7.  
  8.  
  9. #ifndef __wstm__
  10. #define __wstm__
  11.  
  12. #ifndef __glob__
  13. #include "glob.h"
  14. #endif
  15.  
  16. extern void wstm_Init (WindState *windState);
  17. extern void wstm_Save (WindowPtr theWindow, WindState *windState);
  18. extern void wstm_ComputeStd (WindowPtr theWindow);
  19. extern void wstm_ComputeDef (WindowPtr theWindow, Rect *userState);
  20. extern WindowPtr wstm_Restore (Boolean dlog, short windID, Ptr wStorage,
  21.     WindState *windState);
  22. extern void wstm_Mark (WindState *windState);
  23.  
  24. #endif
  25.  
  26.  
  27.